home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / LCLINT-D.SPK / lclint / guide / names.c < prev    next >
C/C++ Source or Header  |  1996-08-26  |  178b  |  16 lines

  1. char *stringreverse (char *s);
  2.  
  3. int f (int x)
  4. {
  5.   int lookalike = 1;
  6.   int looka1ike = 2;
  7.  
  8.   if (x > 3)
  9.     {
  10.       int x = lookalike;
  11.       x += looka1ike;
  12.     }
  13.  
  14.   return x;
  15. }
  16.